home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / Filezilla Server / FileZilla_Server-0_9_41.exe / source / interface / StdAfx.h < prev    next >
Encoding:
C/C++ Source or Header  |  2011-11-06  |  2.8 KB  |  87 lines

  1. // FileZilla Server - a Windows ftp server
  2.  
  3. // Copyright (C) 2002-2004 - Tim Kosse <tim.kosse@gmx.de>
  4.  
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9.  
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14.  
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18.  
  19. // stdafx.h : Include-Datei fⁿr Standard-System-Include-Dateien,
  20. //  oder projektspezifische Include-Dateien, die hΣufig benutzt, aber
  21. //      in unregelmΣ▀igen AbstΣnden geΣndert werden.
  22. //
  23.  
  24. #if !defined(AFX_STDAFX_H__0D7D6CEC_E1AA_4287_BB10_A97FA4D444B6__INCLUDED_)
  25. #define AFX_STDAFX_H__0D7D6CEC_E1AA_4287_BB10_A97FA4D444B6__INCLUDED_
  26.  
  27. #if _MSC_VER > 1000
  28. #pragma once
  29. #endif // _MSC_VER > 1000
  30.  
  31. #define VC_EXTRALEAN        // Selten verwendete Teile der Windows-Header nicht einbinden
  32.  
  33. #pragma warning (disable : 4786)
  34.  
  35. #include <afxwin.h>         // MFC-Kern- und -Standardkomponenten
  36. #include <afxext.h>         // MFC-Erweiterungen
  37. #include <afxdisp.h>        // MFC Automatisierungsklassen
  38. #include <afxdtctl.h>        // MFC-Unterstⁿtzung fⁿr allgemeine Steuerelemente von Internet Explorer 4
  39. #ifndef _AFX_NO_AFXCMN_SUPPORT
  40. #include <afxcmn.h>            // MFC-Unterstⁿtzung fⁿr gΣngige Windows-Steuerelemente
  41. #endif // _AFX_NO_AFXCMN_SUPPORT
  42.  
  43. //#include <afxsock.h>        // MFC-Socket-Erweiterungen
  44. #include "afxcview.h"
  45. #include "atlconv.h"
  46.  
  47. #include "Shlwapi.h"
  48.  
  49. #include <map>
  50. #include <vector>
  51. #include <list>
  52.  
  53. #include <assert.h>
  54. #include <iostream>
  55.  
  56. #ifdef MMGR
  57. #include "../misc/mmgr.h"
  58. #endif
  59.  
  60. #include "misc\saprefsdialog.h"
  61. #include "misc\saprefssubdlg.h"
  62.  
  63. #include "../AsyncSocketEx.h"
  64. #include <afxdhtml.h>
  65.  
  66. #define CStdString CString
  67. #define CStdStringW CStringW
  68. #define CStdStringA CStringA
  69.  
  70. #include "../conversion.h"
  71.  
  72. #define USERCONTROL_GETLIST 0
  73. #define USERCONTROL_CONNOP 1
  74. #define USERCONTROL_KICK 2
  75. #define USERCONTROL_BAN 3
  76.  
  77. #define USERCONTROL_CONNOP_ADD 0
  78. #define USERCONTROL_CONNOP_CHANGEUSER 1
  79. #define USERCONTROL_CONNOP_REMOVE 2
  80. #define USERCONTROL_CONNOP_TRANSFERINFO 3
  81. #define USERCONTROL_CONNOP_TRANSFEROFFSETS 4
  82.  
  83. //{{AFX_INSERT_LOCATION}}
  84. // Microsoft Visual C++ fⁿgt unmittelbar vor der vorhergehenden Zeile zusΣtzliche Deklarationen ein.
  85.  
  86. #endif // !defined(AFX_STDAFX_H__0D7D6CEC_E1AA_4287_BB10_A97FA4D444B6__INCLUDED_)
  87.